home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / spar372.zip / SPAR_DEB.H < prev    next >
C/C++ Source or Header  |  1993-12-17  |  696b  |  34 lines

  1. /*
  2. ** $Source: dh1:network/parnet/Sana2/Sources/spar_debug.h,v $
  3. ** $State: Exp $
  4. ** $Revision: 37.2 $
  5. ** $Date: 93/12/12 23:19:20 $
  6. ** $Author: S.A.Pechler $
  7. **
  8. ** Amiga SANA-II Example PARnet device driver.
  9. **
  10. ** Debug definitions.
  11. */
  12.  
  13. #define DEBW_LEFTEDGE 20
  14. #define DEBW_TOPEDGE 20
  15. #define DEBW_WIDTH 400
  16. #define DEBW_HEIGHT 200
  17.  
  18. struct NewWindow DebugWin=
  19.   { DEBW_LEFTEDGE, DEBW_TOPEDGE,
  20.     DEBW_WIDTH, DEBW_HEIGHT,
  21.     0xFF,0xFF,
  22.     CLOSEWINDOW,
  23.     WINDOWCLOSE | SMART_REFRESH | ACTIVATE | WINDOWDRAG |
  24.     WINDOWDEPTH | WINDOWSIZING | NOCAREREFRESH | WBENCHWINDOW,
  25.     NULL,
  26.     NULL,
  27.     "spar.device debug",
  28.     NULL,
  29.     NULL,
  30.     80, 20,
  31.     0xFFFF, 0xFFFF,
  32.     WBENCHSCREEN
  33.   };
  34.